@charset "utf-8";

body {
	background-color: #000000;
	color: #ffffff;
}
.container {
			display: flex;
			justify-content: space-around;
			flex-wrap: wrap;
		}
		.video {
			flex: 1;
			min-width: 300px; 
			margin: 10px;
		}

.image {
	flex: 1;
	min-width: 300px;
	margin: 10px;
}
		iframe{ 
			width: 100%;
			height: 100%;
			aspect-ration: 16 / 9;
		}

.button {
   border-top: 1px solid #ab8d09;
   background: #000000;
   background: -webkit-gradient(linear, left top, left bottom, from(#fa0808), to(#000000));
   background: -webkit-linear-gradient(top, #fa0808, #000000);
   background: -moz-linear-gradient(top, #fa0808, #000000);
   background: -ms-linear-gradient(top, #fa0808, #000000);
   background: -o-linear-gradient(top, #fa0808, #000000);
   padding: 5px 10px;
   -webkit-border-radius: 0px;
   -moz-border-radius: 0px;
   border-radius: 0px;
   -webkit-box-shadow: rgba(0,0,0,1) 0 1px 0;
   -moz-box-shadow: rgba(0,0,0,1) 0 1px 0;
   box-shadow: rgba(0,0,0,1) 0 1px 0;
   text-shadow: rgba(0,0,0,.4) 0 1px 0;
   color: white;
   font-size: 11px;
   font-family: Georgia, Serif;
   text-decoration: none;
   vertical-align: middle;
   }
.button:hover {
   border-top-color: #28597a;
   background: #28597a;
   color: #ab8d09;
   }
.button:active {
   border-top-color: #ffffff;
   background: #ffffff;
   }

input, textarea {
	padding: 10px;
	font-size: 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

/* CSS Document */

